type encoding/binary.decoder

14 uses

	encoding/binary (current package)
		binary.go#L285: 	d := &decoder{order: order, buf: make([]byte, size)}
		binary.go#L325: 	d := &decoder{order: order, buf: buf[:size]}
		binary.go#L767: type decoder coder
		binary.go#L770: func (d *decoder) bool() bool {
		binary.go#L785: func (d *decoder) uint8() uint8 {
		binary.go#L796: func (d *decoder) uint16() uint16 {
		binary.go#L807: func (d *decoder) uint32() uint32 {
		binary.go#L818: func (d *decoder) uint64() uint64 {
		binary.go#L829: func (d *decoder) int8() int8 { return int8(d.uint8()) }
		binary.go#L833: func (d *decoder) int16() int16 { return int16(d.uint16()) }
		binary.go#L837: func (d *decoder) int32() int32 { return int32(d.uint32()) }
		binary.go#L841: func (d *decoder) int64() int64 { return int64(d.uint64()) }
		binary.go#L845: func (d *decoder) value(v reflect.Value) {
		binary.go#L977: func (d *decoder) skip(v reflect.Value) {